








4





heck yeah!!! I’ll see if I can join, but I may be late
































3
if interested.
1
1
1
3
@TheOneWhoAsked
5
2
5
3
2
5
4
6
5
1
2
3
4
2
1
1
5
6
3
1
@The Gl!tched Cat I nominate this one for removal





7
1
1
1
4

he is poggers

Now this is Poggers

the most Poggers






ew
yes

























































that my phone froze and I had to reatart


















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































3
2
3


1
5
5



1
2















































3
(edited)





6
1
3
2
3
7
5
3
5

7
4
5


1
3
3

5
5
2







but is anyone else having internet issues?
2
1
1
4
4
2
4

6
4
4
5
4
4
3
4
3
3
3
3
3
3
3
3
3
3
/**
* An instance of the Disk class represents a disk
* to be placed on the game board.
*/
public class Disk {
private double x, y, r;
private DiskColor color;
/**
* Constructor.
* Store x, y, radius, and Color values in the fields
* of the object being initialized.
*
* @param x the x coordinate of the new Disk
* @param y the y coordinate of the new Disk
* @param radius the radius of the new Disk
* @param color the color of the new Disk
*/
public Disk(double x, double y, double radius, DiskColor color) {
this.x = x;
this.y = y;
this.r = radius;
this.color = color;
}
/**
* @return the Disk's x coordinate
*/
public double getX() {
return x;
}
/**
* @return the Disk's y coordinate
*/
public double getY() {
return y;
}
/**
* @return the Disk's radius
*/
public double getRadius() {
return r;
}
/**
* @return the Disk's color
*/
public DiskColor getColor() {
return color;
}
4


2
4
(edited)
